home *** CD-ROM | disk | FTP | other *** search
/ Tech Arsenal 1 / Tech Arsenal (Arsenal Computer).ISO / tek-01 / lcppb.zip / LCPPANS.ZIP / STRHEAP.CPP < prev    next >
C/C++ Source or Header  |  1991-07-08  |  430b  |  22 lines

  1. // strheap.cpp -- Create string on heap
  2.  
  3. #include <iostream.h>
  4. #include <stdio.h>
  5.  
  6. main()
  7. {
  8.   char *string = new char[129];
  9.  
  10.   cout << "Enter string: ";
  11.   gets(string);
  12.   cout << "You entered : " << string;
  13. }
  14.  
  15.  
  16. // Copyright (c) 1990 by Tom Swan. All rights reserved
  17. // Revision 1.00    Date: 12/05/1990   Time: 07:54 am
  18.  
  19. // Revision 1.01    Date: 07/08/1991   Time: 05:41 pm
  20. // Converted for Borland C++ 2.0
  21.  
  22.